This is the code you'll need to create the database, and some demo users.

The password of all the demo users (demo1, demo2 and demo3) is 'demo'.

The password of user 'bram' is secret; this is a test for you, to prove that my system is secure. 

I dare you to crack the password, and email it to me at; error.usernotdefined@gmail.com

Bet you can't do that!

Have fun!

DY

-- phpMyAdmin SQL Dump
-- version 3.4.1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jun 09, 2011 at 02:33 PM
-- Server version: 5.5.13
-- PHP Version: 5.3.6

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";

--
-- Database: `users`
--

-- --------------------------------------------------------

--
-- Table structure for table `userlist`
--

CREATE TABLE IF NOT EXISTS `userlist` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user` varchar(32) NOT NULL,
  `userhash` char(128) NOT NULL,
  `pass` char(128) NOT NULL,
  `pe` mediumint(8) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COMMENT='for MyPajama' AUTO_INCREMENT=8 ;

--
-- Dumping data for table `userlist`
--

INSERT INTO `userlist` (`id`, `user`, `userhash`, `pass`, `pe`) VALUES
(5, 'demo1', 'f3eeb224853947449d7818c091636f5b21b606bfec84bf6e2d0ebcbc8afe65180b83ac243193e9bce3f5511a26e2a12e1913d192fc994815fafa56448fec0578', 'c5c3e936a0e3aba0fc57c5c7b9072aa8f129c86aa573d33fa2d1a0e643cefc6a8cffe2a5245bfa7060d61785dfd4819d7440748c70e8a5e0512b1df32e306b9b', 5),
(4, 'bram', 'c256dbd212c697b03919be37aa2c14d6f5e3d9839e22371f5187a40f6a4c61bf31a17af1fe1f11d32e9a07dd027593a0b237991c5b1e86b274cdfc14a548ea22', '6047c1d0935b4476b0cf442dfef38f462d68446b7ced777c10eaf5a82c350e54cd6895a61c8ed79523ab13d2505012613ee770765f3134fe38aa7a9b6d0bb7a0', 4096),
(6, 'demo2', '6b3e0d9e1865c89aea9d7c9ae28b025c895fa82378453ef28418690e80bed7675ffe9b784b675ca370d98ee8d89cf6436da5da9b6cf5c816f1ba9353f54f0639', 'c5c3e936a0e3aba0fc57c5c7b9072aa8f129c86aa573d33fa2d1a0e643cefc6a8cffe2a5245bfa7060d61785dfd4819d7440748c70e8a5e0512b1df32e306b9b', 50),
(7, 'demo3', '1603c9fb6d2d76fa1657fa8f230463ae204b8a06582f170b9db740c6bf274eded79704d7e16e50adfe649a9e068eb844f85a19651a35ad954d27e8571f6e65ad', 'c5c3e936a0e3aba0fc57c5c7b9072aa8f129c86aa573d33fa2d1a0e643cefc6a8cffe2a5245bfa7060d61785dfd4819d7440748c70e8a5e0512b1df32e306b9b', 500);